home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Image & Music Effects / dif-bg-img-time.izs < prev    next >
Text File  |  2005-07-30  |  2KB  |  92 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Different background image according to time of day
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>A simple script that changes the background image of the document four times a day, depending on the time period. The periods are : 12pm to 4am, 4am to 12am, 12am to 6pm, and 6pm to 12pm.
  7. <!/DESCRIPTION> 
  8.  
  9. <!CATEGORY>img and music effects<!/CATEGORY>
  10.  
  11. <!SCRIPT>
  12. <!-- START OF SCRIPT -->
  13. <script language="JavaScript">
  14.  
  15. <!-- Hide From Old Browsers
  16.  
  17. day=new Date()     //..get the date
  18.  
  19. x=day.getHours()    //..get the hour
  20.  
  21. if(x>=0 && x<4) {
  22.  
  23.    document.write('<body background="put your first image file name here such as 1.jpg">')
  24.  
  25. } else
  26.  
  27. if(x>=4 && x<12) {
  28.  
  29.    document.write('<body background="put your second image file name here such as 2.jpg">')
  30.  
  31. } else
  32.  
  33. if(x>=12 && x<18) {
  34.  
  35.    document.write('<body background="put your third image file name here such as 3.jpg">')
  36.  
  37. } else
  38.  
  39. if (x>=18 && x<24) {
  40.  
  41.    document.write('<body background="put your last image file name here such as 4.jpg">')
  42.  
  43. }
  44.  
  45. <!-- End Hiding -->
  46.  
  47. </script> 
  48. <!-- END OF SCRIPT -->
  49. <!/SCRIPT>
  50.  
  51. <!PREVIEW>
  52. <!-- START OF SCRIPT -->
  53.  
  54. <script language="JavaScript">
  55.  
  56. <!-- Hide From Old Browsers
  57.  
  58. day=new Date()     //..get the date
  59.  
  60. x=day.getHours()    //..get the hour
  61.  
  62. if(x>=0 && x<4) {
  63.  
  64.    document.write('<body background="put your first image file name here such as 1.jpg">')
  65.  
  66. } else
  67.  
  68. if(x>=4 && x<12) {
  69.  
  70.    document.write('<body background="put your second image file name here such as 2.jpg">')
  71.  
  72. } else
  73.  
  74. if(x>=12 && x<18) {
  75.  
  76.    document.write('<body background="put your third image file name here such as 3.jpg">')
  77.  
  78. } else
  79.  
  80. if (x>=18 && x<24) {
  81.  
  82.    document.write('<body background="put your last image file name here such as 4.jpg">')
  83.  
  84. }
  85.  
  86. <!-- End Hiding -->
  87.  
  88. </script> 
  89. <!-- END OF SCRIPT -->
  90. <!/PREVIEW>
  91.  
  92. <!RELATED>NONE<!/RELATED>